home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Utilities / PalmLink / src / PL_Lib.i < prev    next >
Text File  |  2000-05-05  |  2KB  |  66 lines

  1. **
  2. * PalmLink -- Connect 3Com Palm with Amiga
  3. *
  4. * Assembler headings
  5. *
  6. * (C) 1998-2000 Richard Körber <rkoerber@gmx.de>
  7. *
  8. *------------------------------------------------------------------
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23. *
  24. * You must not use this source code to gain profit of any kind!
  25. *
  26.  
  27.  
  28.         IFND    PL_LIB_I
  29. PL_LIB_I        SET     -1
  30.  
  31.         INCLUDE exec/libraries.i
  32.         INCLUDE exec/lists.i
  33.         INCLUDE exec/nodes.i
  34.  
  35.  
  36. *--- REVISION CONTROL SYSTEM -------------------------------------------*
  37.  
  38. VERSION         EQU     2
  39. REVISION        EQU     0
  40. VSTRING         MACRO
  41.         dc.b    'palmlink 2.0 (07.01.2000)',13,10,0
  42.         ENDM
  43. VERS            MACRO
  44.         dc.b    'palmlink 2.0 (07.01.2000)'
  45.         ENDM
  46. PRGNAME         MACRO
  47.         dc.b    'palmlink.library'
  48.         ENDM
  49.  
  50. *--- REVISION CONTROL SYSTEM -------------------------------------------*
  51.  
  52.         rsreset                 ;PalmLink Base
  53. plb_Library     rs.b    LIB_SIZE        ;Library-Node
  54. plb_Flags       rs.w    1               ; Flags
  55. plb_SysLib      rs.l    1               ; ^SysBase
  56. plb_SegList     rs.l    1               ; ^SegBase
  57. plb_SIZEOF      rs.w    0
  58.  
  59. PLLB_DELEXP     EQU     0               ;Delay expire
  60. PLLF_DELEXP     EQU     1<<PLLB_DELEXP
  61.  
  62.         ENDC
  63.  
  64. *************************************************************************
  65.  
  66.